home *** CD-ROM | disk | FTP | other *** search
/ IRIX 6.2 Applications 1996 May / SGI IRIX 6.2 Applications 1996 May.iso / dist / impr_dev.idb / usr / impressario / src / libspool / Makefile.z / Makefile
Makefile  |  1996-05-06  |  2KB  |  62 lines

  1. #! smake
  2. #**************************************************************************
  3. #*                                      *
  4. #*           Copyright (c) 1991 Silicon Graphics, Inc.              *
  5. #*            All Rights Reserved                    *
  6. #*                                      *
  7. #*         THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF SGI             *
  8. #*                                      *
  9. #* The copyright notice above does not evidence any actual of intended    *
  10. #* publication of such source code, and is an unpublished work by Silicon *
  11. #* Graphics, Inc. This material contains CONFIDENTIAL INFORMATION that is *
  12. #* the property of Silicon Graphics, Inc. Any use, duplication or         *
  13. #* disclosure not specifically authorized by Silicon Graphics is strictly *
  14. #* prohibited.                                  *
  15. #*                                      *
  16. #* RESTRICTED RIGHTS LEGEND:                          *
  17. #*                                      *
  18. #* Use, duplication or disclosure by the Government is subject to         *
  19. #* restrictions as set forth in subdivision (c)(1)(ii) of the Rights in   *
  20. #* Technical Data and Computer Software clause at DFARS 52.227-7013,      *
  21. #* and/or in similar or successor clauses in the FAR, DOD or NASA FAR     *
  22. #* Supplement. Unpublished - rights reserved under the Copyright Laws of  *
  23. #* the United States. Contractor is SILICON GRAPHICS, INC., 2011 N.       *
  24. #* Shoreline Blvd., Mountain View, CA 94039-7311                          *
  25. #**************************************************************************
  26. #*
  27. #* Makefile (user.makefile) - libspool, printer spooling system API library
  28. #*
  29. #* $Revision: 1.1 $
  30. #*
  31. #*
  32. #**************************************************************************
  33.  
  34. include /usr/include/make/commondefs
  35.  
  36. TARGETS = libspool.a
  37.  
  38. CFILES =  SLMain.c \
  39.       SLErrors.c \
  40.       SLBsd.c \
  41.       SLSysV.c \
  42.       SLUtil.c
  43.  
  44. LOCAL_H = spoolI.h
  45.  
  46. CVERSION = -xansi
  47. OPTIMIZER = -O2
  48.  
  49. LCINCS = -I.
  50.  
  51. ARFLAGS = crls
  52. LINTFLAGS = -u -z -y -woff 302
  53.  
  54. default all: $(TARGETS)
  55.  
  56. include $(COMMONRULES)
  57.  
  58. $(TARGETS): $(OBJECTS)
  59.     $(AR) $(ARFLAGS) $(TARGETS) $?
  60.  
  61. install: all
  62.